home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / plnk081.zip / pilot-link.0.8.1 / Java / Pdapilot / SortBlock.java < prev    next >
Text File  |  1997-07-22  |  289b  |  21 lines

  1.  
  2. package Pdapilot;
  3.  
  4. import java.io.*;
  5.  
  6.  
  7. public class SortBlock extends Block {
  8.         
  9.         public SortBlock() {
  10.             super();
  11.         }
  12.         
  13.         public SortBlock(byte[] contents) {
  14.             super(contents);
  15.         }
  16.         
  17.         public String toString() {
  18.             return "<generic sortblock raw '"+Util.prettyPrint(raw)+"'>";
  19.         }
  20. }
  21.